home *** CD-ROM | disk | FTP | other *** search
-
- {*******************************************************}
- { }
- { Delphi Visual Component Library }
- { }
- { Copyright (c) 1995,97 Borland International }
- { }
- {*******************************************************}
-
- unit DBLogDlg;
-
- {$P+}
-
- interface
-
- uses SysUtils, Windows, Messages, Classes, Graphics, Controls,
- Forms, StdCtrls, ExtCtrls;
-
- type
- TLoginDialog = class(TForm)
- Panel: TPanel;
- Bevel: TBevel;
- DatabaseName: TLabel;
- UserName: TEdit;
- Password: TEdit;
- OKButton: TButton;
- CancelButton: TButton;
- procedure FormShow(Sender: TObject);
- end;
-
- function LoginDialog(const ADatabaseName: string;
- var AUserName, APassword: string): Boolean;
-
- function LoginDialogEx(const ADatabaseName: string;
- var AUserName, APassword: string; NameReadOnly: Boolean): Boolean;
-
- implementation
-